home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / bash-1.12 / dist / error.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-21  |  466 b   |  14 lines

  1. /* error.h -- External declarations of functions appearing in error.c. */
  2.  
  3. /* Report an error having to do with FILENAME. */
  4. extern void file_error ();
  5.  
  6. /* Report a programmer's error, and abort.  Pass REASON, and ARG1 ... ARG5. */
  7. extern void programming_error ();
  8.  
  9. /* General error reporting.  Pass FORMAT and ARG1 ... ARG5. */
  10. extern void report_error ();
  11.  
  12. /* Report an unrecoverable error and exit.  Pass FORMAT and ARG1 ... ARG5. */
  13. extern void fatal_error ();
  14.